testing.common.parent (field)

30 uses

	testing (current package)
		benchmark.go#L643: 			parent:  &b.common,
		fuzz.go#L307: 				parent:  &f.common,
		fuzz.go#L316: 			t.parent.w = captureOut
		fuzz.go#L408: 	if *isFuzzWorker || f.parent == nil {
		fuzz.go#L507: 				parent:  &root,
		fuzz.go#L578: 			parent:  &root,
		fuzz.go#L652: 			for root := &f.common; root.parent != nil; root = root.parent {
		testing.go#L511: 	parent   *common
		testing.go#L609: 				parent := c.parent
		testing.go#L683: 	p := c.parent
		testing.go#L800: 	if c.parent != nil {
		testing.go#L801: 		c.parent.setRan()
		testing.go#L810: 	if c.parent != nil {
		testing.go#L811: 		c.parent.Fail()
		testing.go#L879: 		for parent := c.parent; parent != nil; parent = parent.parent {
		testing.go#L1237: 	if t.parent.barrier == nil {
		testing.go#L1250: 	t.parent.sub = append(t.parent.sub, t)
		testing.go#L1264: 	<-t.parent.barrier // Wait for the parent test to complete.
		testing.go#L1331: 			for p := t.parent; p != nil; p = p.parent {
		testing.go#L1378: 			for root := &t.common; root.parent != nil; root = root.parent {
		testing.go#L1384: 				if r := root.parent.runCleanup(recoverAndReturnPanic); r != nil {
		testing.go#L1385: 					fmt.Fprintf(root.parent.w, "cleanup panicked with %v", r)
		testing.go#L1427: 		if t.parent != nil && atomic.LoadInt32(&t.hasSub) == 0 {
		testing.go#L1469: 			parent:  &t.common,
		testing.go#L1752: 	if t.parent == nil {